home *** CD-ROM | disk | FTP | other *** search
/ Freaks Macintosh Archive / Freaks Macintosh Archive.bin / Freaks Macintosh Archives / Ham⁄GPS / SoftKiss.src.1.8 Folder / SoftKiss.src.1.8 / (unloved) / sfk_net_glue.c < prev    next >
C/C++ Source or Header  |  1990-08-01  |  421b  |  28 lines

  1. /*
  2.  * glue to tell mailcheck about userids and that macmail is running
  3.  */
  4.  
  5. void real_main(long want_inhibit,char *name);
  6.  
  7. void main()
  8. {
  9.   asm {
  10.       move.l 4(sp),a0
  11.       move.l 8(sp),a1
  12.       move.l a4,-(sp)
  13.       move.l a1,-(sp)
  14.       move.l a0,-(sp)
  15.       lea main,a4
  16.       jsr real_main
  17.       add.l #8,sp
  18.       move.l (sp)+,a4
  19.   }
  20. }
  21.  
  22. #include "mmc_macmail.h"
  23.  
  24. void real_main(long want_inhibit,char *name)
  25. {
  26.     mmc_macmail(want_inhibit,name);
  27. }
  28.